home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / editor / nsIURIRefObject.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  4.8 KB  |  159 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIURIRefObject.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIURIRefObject_h__
  6. #define __gen_nsIURIRefObject_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. #ifndef __gen_domstubs_h__
  14. #include "domstubs.h"
  15. #endif
  16.  
  17. /* For IDL files that don't want to include root IDL files. */
  18. #ifndef NS_NO_VTABLE
  19. #define NS_NO_VTABLE
  20. #endif
  21. class nsIDOMNode; /* forward declaration */
  22.  
  23.  
  24. /* starting interface:    nsIURIRefObject */
  25. #define NS_IURIREFOBJECT_IID_STR "2226927e-1dd2-11b2-b57f-faab47288563"
  26.  
  27. #define NS_IURIREFOBJECT_IID \
  28.   {0x2226927e, 0x1dd2, 0x11b2, \
  29.     { 0xb5, 0x7f, 0xfa, 0xab, 0x47, 0x28, 0x85, 0x63 }}
  30.  
  31. /** A class which can represent any node which points to an
  32.   * external URI, e.g. <a>, <img>, <script> etc,
  33.   * and has the capability to rewrite URLs to be
  34.   * relative or absolute.
  35.   * Used by the editor but not dependant on it.
  36.   */
  37. class NS_NO_VTABLE nsIURIRefObject : public nsISupports {
  38.  public: 
  39.  
  40.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IURIREFOBJECT_IID)
  41.  
  42.   /* attribute nsIDOMNode node; */
  43.   NS_IMETHOD GetNode(nsIDOMNode * *aNode) = 0;
  44.   NS_IMETHOD SetNode(nsIDOMNode * aNode) = 0;
  45.  
  46.   /**
  47.    * Go back to the beginning of the attribute list.
  48.    */
  49.   /* void Reset (); */
  50.   NS_IMETHOD Reset(void) = 0;
  51.  
  52.   /**
  53.    * Return the next rewritable URI.
  54.    */
  55.   /* DOMString GetNextURI (); */
  56.   NS_IMETHOD GetNextURI(nsAString & _retval) = 0;
  57.  
  58.   /**
  59.    * Go back to the beginning of the attribute list
  60.    *
  61.    * @param aOldPat  Old pattern to be replaced, e.g. file:///a/b/
  62.    * @param aNewPat  New pattern to be replaced, e.g. http://mypage.aol.com/
  63.    * @param aMakeRel Rewrite links as relative vs. absolute
  64.    */
  65.   /* void RewriteAllURIs (in DOMString aOldPat, in DOMString aNewPat, in boolean aMakeRel); */
  66.   NS_IMETHOD RewriteAllURIs(const nsAString & aOldPat, const nsAString & aNewPat, PRBool aMakeRel) = 0;
  67.  
  68. };
  69.  
  70. /* Use this macro when declaring classes that implement this interface. */
  71. #define NS_DECL_NSIURIREFOBJECT \
  72.   NS_IMETHOD GetNode(nsIDOMNode * *aNode); \
  73.   NS_IMETHOD SetNode(nsIDOMNode * aNode); \
  74.   NS_IMETHOD Reset(void); \
  75.   NS_IMETHOD GetNextURI(nsAString & _retval); \
  76.   NS_IMETHOD RewriteAllURIs(const nsAString & aOldPat, const nsAString & aNewPat, PRBool aMakeRel); 
  77.  
  78. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  79. #define NS_FORWARD_NSIURIREFOBJECT(_to) \
  80.   NS_IMETHOD GetNode(nsIDOMNode * *aNode) { return _to GetNode(aNode); } \
  81.   NS_IMETHOD SetNode(nsIDOMNode * aNode) { return _to SetNode(aNode); } \
  82.   NS_IMETHOD Reset(void) { return _to Reset(); } \
  83.   NS_IMETHOD GetNextURI(nsAString & _retval) { return _to GetNextURI(_retval); } \
  84.   NS_IMETHOD RewriteAllURIs(const nsAString & aOldPat, const nsAString & aNewPat, PRBool aMakeRel) { return _to RewriteAllURIs(aOldPat, aNewPat, aMakeRel); } 
  85.  
  86. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  87. #define NS_FORWARD_SAFE_NSIURIREFOBJECT(_to) \
  88.   NS_IMETHOD GetNode(nsIDOMNode * *aNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNode(aNode); } \
  89.   NS_IMETHOD SetNode(nsIDOMNode * aNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetNode(aNode); } \
  90.   NS_IMETHOD Reset(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Reset(); } \
  91.   NS_IMETHOD GetNextURI(nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNextURI(_retval); } \
  92.   NS_IMETHOD RewriteAllURIs(const nsAString & aOldPat, const nsAString & aNewPat, PRBool aMakeRel) { return !_to ? NS_ERROR_NULL_POINTER : _to->RewriteAllURIs(aOldPat, aNewPat, aMakeRel); } 
  93.  
  94. #if 0
  95. /* Use the code below as a template for the implementation class for this interface. */
  96.  
  97. /* Header file */
  98. class nsURIRefObject : public nsIURIRefObject
  99. {
  100. public:
  101.   NS_DECL_ISUPPORTS
  102.   NS_DECL_NSIURIREFOBJECT
  103.  
  104.   nsURIRefObject();
  105.  
  106. private:
  107.   ~nsURIRefObject();
  108.  
  109. protected:
  110.   /* additional members */
  111. };
  112.  
  113. /* Implementation file */
  114. NS_IMPL_ISUPPORTS1(nsURIRefObject, nsIURIRefObject)
  115.  
  116. nsURIRefObject::nsURIRefObject()
  117. {
  118.   /* member initializers and constructor code */
  119. }
  120.  
  121. nsURIRefObject::~nsURIRefObject()
  122. {
  123.   /* destructor code */
  124. }
  125.  
  126. /* attribute nsIDOMNode node; */
  127. NS_IMETHODIMP nsURIRefObject::GetNode(nsIDOMNode * *aNode)
  128. {
  129.     return NS_ERROR_NOT_IMPLEMENTED;
  130. }
  131. NS_IMETHODIMP nsURIRefObject::SetNode(nsIDOMNode * aNode)
  132. {
  133.     return NS_ERROR_NOT_IMPLEMENTED;
  134. }
  135.  
  136. /* void Reset (); */
  137. NS_IMETHODIMP nsURIRefObject::Reset()
  138. {
  139.     return NS_ERROR_NOT_IMPLEMENTED;
  140. }
  141.  
  142. /* DOMString GetNextURI (); */
  143. NS_IMETHODIMP nsURIRefObject::GetNextURI(nsAString & _retval)
  144. {
  145.     return NS_ERROR_NOT_IMPLEMENTED;
  146. }
  147.  
  148. /* void RewriteAllURIs (in DOMString aOldPat, in DOMString aNewPat, in boolean aMakeRel); */
  149. NS_IMETHODIMP nsURIRefObject::RewriteAllURIs(const nsAString & aOldPat, const nsAString & aNewPat, PRBool aMakeRel)
  150. {
  151.     return NS_ERROR_NOT_IMPLEMENTED;
  152. }
  153.  
  154. /* End of implementation class template. */
  155. #endif
  156.  
  157.  
  158. #endif /* __gen_nsIURIRefObject_h__ */
  159.